SeaORM
SeaORM is a relational ORM to help you build web services in Rust with the familiarity of dynamic languages.
If you like what we do, consider starring, sharing and contributing!
Please help us with maintaining SeaORM by completing the SeaQL Community Survey 2024!
Getting Started
Integration examples:
- Actix v4 Example
- Actix v3 Example
- Axum Example
- GraphQL Example
- jsonrpsee Example
- Poem Example
- Rocket Example
- Salvo Example
- Tonic Example
- Seaography Example
Support
Join our Discord server to chat with other members of the SeaQL community!
Professional support on Rust programming and best practices is available. You can email us for a quote!
Features
-
Async
Relying on SQLx, SeaORM is a new library with async support from day 1.
-
Dynamic
Built upon SeaQuery, SeaORM allows you to build complex dynamic queries.
-
Testable
Use mock connections and/or SQLite to write tests for your application logic.
-
Service Oriented
Quickly build services that join, filter, sort and paginate data in REST, GraphQL and gRPC APIs.
A quick taste of SeaORM
Entity
use *;
Select
// find all models
let cakes: = find.all.await?;
// find and filter
let chocolate: = find
.filter
.all
.await?;
// find one model
let cheese: = find_by_id.one.await?;
let cheese: Model = cheese.unwrap;
// find related models (lazy)
let fruits: = cheese.find_related.all.await?;
// find related models (eager)
let cake_with_fruits: =
find.find_with_related.all.await?;
Insert
let apple = ActiveModel ;
let pear = ActiveModel ;
// insert one
let pear = pear.insert.await?;
// insert many
insert_many.exec.await?;
Update
use ;
let pear: = find_by_id.one.await?;
let mut pear: ActiveModel = pear.unwrap.into;
pear.name = Set;
// update one
let pear: Model = pear.update.await?;
// update many: UPDATE "fruit" SET "cake_id" = NULL WHERE "fruit"."name" LIKE '%Apple%'
update_many
.col_expr
.filter
.exec
.await?;
Save
let banana = ActiveModel ;
// create, because primary key `id` is `NotSet`
let mut banana = banana.save.await?;
banana.name = Set;
// update, because primary key `id` is `Set`
let banana = banana.save.await?;
Delete
// delete one
let orange: = find_by_id.one.await?;
let orange: Model = orange.unwrap;
delete
.exec
.await?;
// or simply
let orange: = find_by_id.one.await?;
let orange: Model = orange.unwrap;
orange.delete.await?;
// delete many: DELETE FROM "fruit" WHERE "fruit"."name" LIKE 'Orange'
delete_many
.filter
.exec
.await?;
🧭 Seaography: GraphQL integration (preview)
Seaography is a GraphQL framework built on top of SeaORM. Seaography allows you to build GraphQL resolvers quickly. With just a few commands, you can launch a GraphQL server from SeaORM entities!
Starting 0.12
, seaography
integration is built into sea-orm
. While Seaography development is still in an early stage, it is especially useful in prototyping and building internal-use admin panels.
Look at the Seaography Example to learn more.
Learn More
Who's using SeaORM?
See Built with SeaORM. Feel free to submit yours!
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
SeaORM is a community driven project. We welcome you to participate, contribute and together help build Rust's future.
A big shout out to our contributors!
Sponsorship
SeaQL.org is an independent open-source organization run by passionate developers. If you enjoy using our libraries, please star and share our repositories. If you feel generous, a small donation via GitHub Sponsor will be greatly appreciated, and goes a long way towards sustaining the organization.
We invite you to participate, contribute and together help build Rust's future.
Gold Sponsors
Mascot
A friend of Ferris, Terres the hermit crab is the official mascot of SeaORM. His hobby is collecting shells.